home *** CD-ROM | disk | FTP | other *** search
- {* *}
- {* FormulaBuilder 1.0 *}
- {* Basic Demo *}
-
- {* A program which demonstrates the range of expression types *}
- {* possible with FormulaBuilder *}
-
- program Fbdemo;
- uses
- Forms,
- Testfrm in 'TESTFRM.PAS' {Form1},
- Funcdlg in 'FUNCDLG.PAS' {FunctionDlg};
-
- {$R *.RES}
-
- begin
- Application.CreateForm(TForm1, Form1);
- Application.CreateForm(TFunctionDlg, FunctionDlg);
- Application.Run;
- end.
-